From: Miles Bader Date: Mon, 30 Jul 2007 05:33:55 +0000 (+0000) Subject: Fix void function definition error in cus-edit.el X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~17585 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9a941a6b593566b1042716be5c2ca112ad6d5334;p=emacs.git Fix void function definition error in cus-edit.el 2007-07-30 Michael Olson * cus-edit.el (custom-group-save): Fix void function definition error. Thanks to Zhang Wei for the report. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-834 Creator: Michael Olson --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dd7e8df7e9c..a6a2303284f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2007-07-30 Michael Olson + * cus-edit.el (custom-group-save): Fix void function definition + error. Thanks to Zhang Wei for the report. + * ps-print.el: Check in trivial changes to the autoloads section caused by the build process. These autoloads really ought to be placed in a separate file, methinks. diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 200f173e882..ff86711e041 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4014,7 +4014,7 @@ Optional EVENT is the location for the menu." (defun custom-group-save (widget) "Save all modified group members." - (dolist (child (children (widget-get widget :children))) + (dolist (child (widget-get widget :children)) (when (memq (widget-get child :custom-state) '(modified set)) (widget-apply child :custom-save))))